home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Programmation
/
jedit
/
jedit5.1.0install.exe
/
{app}
/
macros
/
Editing
/
Open_Line_Below.bsh
< prev
next >
Wrap
Text File
|
2013-07-28
|
261b
|
8 lines
/* Open_Line_Below.bsh: mimics the Shift-Enter combination in Eclipse,
opening a new blank line below the current cursor position.
Author: Scott LeBaron
License: GPL v 2.0
*/
textArea.goToEndOfWhiteSpace(false);
textArea.insertEnterAndIndent();